home *** CD-ROM | disk | FTP | other *** search
- on exitFrame me
- go(the frame)
- end
-
- on keyUp me
- case the keyCode of
- 123:
- delta = rect(-1, 0, -1, 0) + (15 * the shiftDown * rect(-1, 0, -1, 0))
- 124:
- delta = rect(1, 0, 1, 0) + (15 * the shiftDown * rect(1, 0, 1, 0))
- 125:
- delta = rect(0, 1, 0, 1) + (15 * the shiftDown * rect(0, 1, 0, 1))
- 126:
- delta = rect(0, -1, 0, -1) + (15 * the shiftDown * rect(-1, 0, -1, 0))
- end case
- tell the stage
- movescreen(delta)
- end tell
- end
-